home *** CD-ROM | disk | FTP | other *** search
/ PCNet 2000 November / PCnet Mega CD - Kasım 2000.iso / PROGS / M3Gate / M3STP03.EXE / data1.cab / Main_Program_Files / relnotes.txt < prev    next >
Encoding:
Text File  |  2000-05-22  |  1.8 KB  |  88 lines

  1. M3Gate
  2. Version 0.3
  3. Copyright ⌐ 2000 Numeric Algorithm Laboratories
  4. _________________________________________________
  5. RELEASE NOTES
  6.  
  7. Contents:
  8.  
  9.   * WML Parsing Details
  10.   * WMLScripts Implementation Details
  11. _________________________________________________
  12. WML PARSING DETAILS
  13.  
  14.     1 Common Attributes
  15.  
  16. 1.1 <class> and <xml:lang> are ignored.
  17. 1.2 In all elements except <card> `id` attribute 
  18. is ignored.
  19.     
  20.     2 Events
  21.  
  22. 2.1 If there are several <onevent> with the 
  23. same `type` met, only the first one is 
  24. significant.
  25. 2.2 Type `onpick` in <onevent> is not supported 
  26. (however `onpick` attribute in <option> is).
  27.  
  28.     3 <card>
  29.  
  30. 3.1 `ordered` attribute is always considered 
  31. as `true`.
  32.  
  33.     4 <input> and <select>
  34.  
  35. 4.1 `tabindex` attribute is ignored.
  36.  
  37.     5 <timer> element
  38.  
  39. 5.1 If value is not valid integer, it is equal 
  40. to zero.
  41.  
  42.     6 Text formatting
  43.  
  44. 6.1 Attribute `mode` in <p> element is always 
  45. `wrap`.
  46. 6.2 Tables are supported, but are shown as a 
  47. single column.
  48. I.e. table 
  49.     1 2
  50.     3 4
  51. will be presented as 
  52.     1
  53.     2
  54.     3
  55.     4
  56. 6.3   is replaced by simple space
  57. 6.4 ­ is shown as minus
  58. _________________________________________________
  59. WMLSCRIPT IMPLEMENTATION DETAILS
  60.  
  61.     1 URL library
  62.  
  63. 1.1 `loadString` does nothing and returns 
  64. `invalid`.
  65.  
  66.     2 Lang library
  67.  
  68. 2.1 Functions `abort` and `exit` do nothing and 
  69. return `invalid`.
  70.  
  71.     3 Debug library
  72.  
  73. 3.1 M3Gate implements its own library: Debug.
  74.  
  75. 3.2 This library is not standard libary, and 
  76. should be used only for debug versions of WAP 
  77. applications. It includes two functions:
  78.  
  79. Function:    watch(value)
  80. Parameter:    value - any WMLScript variable
  81. Description:    Shows variable value and its 
  82.                 type
  83. Returns:        None
  84.  
  85. Function:    trace(value)
  86. Parameter:    value - string
  87. Description:    Sends value to debugger
  88. Returns:        None